home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR10 / SPX20.ZIP / SPX_INT.ZIP / SPX_JOY.INT < prev    next >
Text File  |  1993-09-14  |  412b  |  25 lines

  1. Unit spx_joy;
  2.  
  3. {$X+,O+ }
  4. { SPX Library Version 2.0  Copyright 1993 Scott D. Ramsay }
  5.  
  6. interface
  7.  
  8. Uses dos;
  9.  
  10. const
  11.   gravis : boolean = false;
  12.  
  13. var
  14.    JoyMaxCt : word;
  15.    stickx,
  16.    sticky   : array[1..2] of integer;
  17.    button1,
  18.    button2  : array[1..2] of boolean;
  19.  
  20. function joythere : boolean;
  21. function joy1there : boolean;
  22. function joy2there : boolean;
  23. procedure setstick(h:integer);
  24.  
  25.